home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
F1 Licenseware
/
F1 Licenseware - Volume 1.iso
/
disks
/
003.dms
/
003.adf
/
EXAMPLE_PROGRAMS
/
example8.AMOS
/
example8.amosSourceCode
Wrap
AMOS Source Code
|
1993-02-25
|
822b
|
45 lines
'EXAMPLE PROGRAM 8
'
'
Rem the usual start up stuff
Curs Off : Paper 8 : Pen 0 : Cls 8
'
'
Rem the CENTRE command is used instead of PRINT, to CENTRE text on screen.
Centre "DEMONSTRATION OF CHANGE MOUSE"
'
'
Rem colour 3 is set to flashing as default, you can switch flash off with
Rem the command FLASH OFF, try putting it in.
Pen 3
'
'
Rem set text cursor to 0 across 10 down and CENTRE the text, as the current
Rem PEN colour is set to 3 this text will FLASH.
Locate 0,10 : Centre "NORMAL MOUSE POINTER"
'
'
Rem wait here for 4 seconds to give enough time to read the text.
Wait 200
'
'
Locate 0,10 : Centre "CROSS HAIR MOUSE POINTER"
'
'
Rem This is to CHANGE the MOUSE pointer to imagre 2
Change Mouse 2
'
'
Wait 200
'
'
Locate 0,10 : Centre "CLOCK MOUSE POINTER, UGH!"
'
'
Change Mouse 3
'
'
Wait 200
'
'
Edit